home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / asmexam.arc / GLOS.TXT < prev    next >
Text File  |  1984-07-12  |  3KB  |  66 lines

  1.  
  2.  
  3. Assembly Language - The programming language which matches the machine's
  4. defined operations on a 1 to 1 basis but allows symbols to represent the
  5. operations and addresses rather than the actual binary codes.
  6.  
  7. Binary - refers to base 2.
  8.  
  9. Bit - Binary digit ie 1 or 0.
  10.  
  11. Byte - Eight bits taken as a unit.
  12.  
  13. CPU - Central Processing Unit: The portion of the system unit which "typically"
  14. contains the arithmetic calculation resources and control logic to interpret
  15. and execute instructions and  control the over-all system.
  16. In a microcomputer it is the microprocessor chip (IBM PC = Intel 8088).
  17.  
  18. Dynamic RAM - A form of RAM in which the information is stored as charge
  19. in a capacitive circuit thus it is constantly "leaking" slowly out. It needs
  20. to be "refreshed" every several milliseconds or the contents will be lost.This 
  21. makes it inherenly slower than other forms of RAM also contents are lost 
  22. when power is turned off.
  23.  
  24. Hexidecimal - refers to base 16.
  25.  
  26. Interrupt - A externally triggered event that causes the processor to halt 
  27. the current process a initiate a new sequence of instructions.
  28.  
  29. Machine Language - The binary codes interperted by the processor
  30. as operation codes and memory addresses.
  31.    
  32. Process - Term used to refer to an executing (ie "running") program.
  33.  
  34. Static RAM - RAM in which information is stored as voltage levels in
  35. register like locations. For semiconductor RAM used in many mini-computers
  36. and microcomputers it losses its contents when power is removed. It is
  37. typically faster than dynamic RAM but requires more chip area.
  38.  
  39. RAM - Random Access Memory: A memory in which any memory location can be 
  40. accessed in the same amount of time regardless of its relative location from
  41. the previously accessed location. see dynamic and static RAM.
  42.  
  43. Register - A fast memory location within the processor used to store operands
  44. for arithmetic processing and temporary results. 
  45.  
  46. ROM - Read Only Memory: A form of memory which can be accessed as random 
  47. locations but cannot be written. It's locations are "burned" permenently
  48. with the desired contents so when power is turned off the contents are not
  49. lost.
  50.  
  51. Task- Term used to refer to a currently executing (ie "running") program.
  52.  
  53. Virtual - Term commonly used to describe hardware which is made to function
  54. at low level one way but appear at a higher level in a different manner ie
  55. "virtual memory" is a way of making the address space appear larger than it
  56. is to the user.
  57.  
  58. Word - This is a rather loosely defined term. Some consider 16 bits to be the
  59. definitive word. More commonly used definition, however is the largest number
  60. of bits on which a processor is capable of operatin or the typical number of
  61. bits on which a processor is capable of operating. In the IBM or TI PC this is
  62. 16 bits. On aN IBM 370 its 32 bits. The word size of the processor is the
  63. further confused on the PC's because the number of bits the processor can read
  64. from memory at once is 8 bits (Intel 8088 has an 8 bit data bus).
  65.  
  66.